home *** CD-ROM | disk | FTP | other *** search
/ Java Programmer's Toolkit / Java Programmer's Toolkit.iso / gs3.53 / fontmap.os2 < prev    next >
Text File  |  1996-01-10  |  15KB  |  405 lines

  1. %    Copyright (C) 1990, 1992, 1993 Aladdin Enterprises.  All rights reserved.
  2. % This file is part of Aladdin Ghostscript.
  3. % Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. % or distributor accepts any responsibility for the consequences of using it,
  5. % or for whether it serves any particular purpose or works at all, unless he
  6. % or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. % License (the "License") for full details.
  8. % Every copy of Aladdin Ghostscript must include a copy of the License,
  9. % normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. % the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. % under certain conditions described in the License.  Among other things, the
  12. % License requires that the copyright notice and this notice be preserved on
  13. % all copies.
  14.  
  15. % fontmap.os2 aka Fontmap.OS2 - OS/2 font catalog for Ghostscript.
  16.  
  17. % ----------------------------------------------------------------
  18.  
  19. % This file is a catalog of fonts known to Ghostscript.  Any font
  20. % that is to be loaded automatically when named must be in this catalog,
  21. % except for fonts that Ghostscript finds automatically in directories
  22. % named in the GS_FONTPATH environment variable.
  23.  
  24. % Each font has an entry consisting of three items:
  25. %
  26. %    - The name by which the font is known inside Ghostscript
  27. %    (a Ghostscript name preceded by a `/', or a string enclosed
  28. %    in parentheses).  This is used to find the file from which
  29. %    a font of a given name should be loaded.
  30. %
  31. %    - Information depending on whether this is a real font or a
  32. %    font alias:
  33. %
  34. %        - For real fonts, the name of the Ghostscript font
  35. %        file (a Ghostscript string, enclosed in parentheses).
  36. %        The filename should include the extension, which (by
  37. %        convention) is `.gsf'.  `.pfa' and `.pfb' files are
  38. %        also usable as fonts for Ghostscript.
  39. %
  40. %        - For font aliases, the name of the font which should
  41. %        be used when this one is requested, preceded by a
  42. %        `/'.  See the entry for Charter below for an example.
  43. %
  44. %    - A terminating semicolon.
  45.  
  46. % Because of limitations in the MS-DOS environment, Ghostscript font
  47. % file names must be no more than 8 characters long, must consist only
  48. % of LOWER CASE letters, digits, and underscores, and must start with a
  49. % letter.  Font names, on the other hand, need only obey the syntax of
  50. % names in the Ghostscript language, which is much more liberal.
  51.  
  52. % Most of the Ghostscript fonts were created automatically from freely
  53. % available bitmaps.  There is a makefile (fonts.mak) that specifies
  54. % how this conversion was done.  fonts.mak also specifies, for each such
  55. % converted font, its uniqueID (an integer used to identify distinct fonts
  56. % within the Ghostscript font machinery), and its encoding (the mapping
  57. % from character codes in a string to character names).  For more detailed
  58. % information, read fonts.mak.
  59.  
  60. % The following table is actually a Ghostscript data structure.
  61. % If you add new entries, be sure to copy the punctuation accurately;
  62. % in particular, you must leave at least one space or tab between each
  63. % field in the entry.  Also, please read fonts.doc for important information
  64. % about font names.
  65.  
  66. % ATM fonts that come with OS/2.
  67.  
  68. /Courier            (cour.pfb)    ;
  69. /Courier-Oblique        /Courier-Italic    ;
  70. /Courier-Italic            (couri.pfb)    ;
  71. /Courier-Bold            (courb.pfb)    ;
  72. /Courier-BoldOblique        /Courier-BoldItalic    ;
  73. /Courier-BoldItalic        (courbi.pfb)    ;
  74.  
  75. /Helvetica            (helv.pfb)    ;
  76. /Helvetica-Oblique        /Helvetica-Italic    ;
  77. /Helvetica-Italic        (helvi.pfb)    ;
  78. /Helvetica-Narrow        (phvrrn.gsf)    ;
  79. /Helvetica-Bold            (helvb.pfb)    ;
  80. /Helvetica-BoldOblique        /Helvetica-BoldItalic    ;
  81. /Helvetica-BoldItalic        (helvbi.pfb)    ;
  82.  
  83. /Symbol                /SymbolSet    ;
  84. /SymbolSet            (symb.pfb)    ;
  85.  
  86. /Times-Roman            /TimesNewRoman    ;
  87. /TimesNewRoman            (tnr.pfb)    ;
  88. /Times-Italic            /TimesNewRoman-Italic    ;
  89. /TimesNewRoman-Italic        (tnri.pfb)    ;
  90. /Times-Bold            /TimesNewRoman-Bold    ;
  91. /TimesNewRoman-Bold        (tnrb.pfb)    ;
  92. /Times-BoldItalic        /TimesNewRoman-BoldItalic    ;
  93. /TimesNewRoman-BoldItalic    (tnrbi.pfb)    ;
  94.  
  95. % Fonts converted from bitmaps.
  96.  
  97. /AvantGarde-Book        (pagk.gsf)    ;
  98. /AvantGarde-BookOblique        (pagko.gsf)    ;
  99. /AvantGarde-Demi        (pagd.gsf)    ;
  100. /AvantGarde-DemiOblique        (pagdo.gsf)    ;
  101.  
  102. /Bookman-Light            (pbkl.gsf)    ;
  103. /Bookman-LightItalic        (pbkli.gsf)    ;
  104. /Bookman-Demi            (pbkd.gsf)    ;
  105. /Bookman-DemiItalic        (pbkdi.gsf)    ;
  106.  
  107. % The converted Bitstream Charter fonts have been replaced by Type 1 fonts
  108. % contributed to the X11R5 distribution; see below.
  109. %/Charter-Roman            (bchr.gsf)    ;
  110. %/Charter-Italic        (bchri.gsf)    ;
  111. %/Charter-Bold            (bchb.gsf)    ;
  112. %/Charter-BoldItalic        (bchbi.gsf)    ;
  113.  
  114. % The converted Courier fonts have been replaced by Type 1 fonts
  115. % contributed to the X11R5 distribution; see below.
  116. %/Courier            (pcrr.gsf)    ;
  117. %/Courier-Oblique        (pcrro.gsf)    ;
  118. %/Courier-Bold            (pcrb.gsf)    ;
  119. %/Courier-BoldOblique        (pcrbo.gsf)    ;
  120. % Quite a few PostScript files reference Courier-Oblique rather than
  121. % Courier-Italic, so we need some aliases here.
  122. %/Courier-Oblique        /Courier-Italic        ;
  123. %/Courier-BoldOblique        /Courier-BoldItalic    ;
  124.  
  125. %/Helvetica            (phvr.gsf)    ;
  126. %/Helvetica-Oblique        (phvro.gsf)    ;
  127. %/Helvetica-Bold            (phvb.gsf)    ;
  128. %/Helvetica-BoldOblique        (phvbo.gsf)    ;
  129. % We don't have a full set of Helvetica-Narrow....
  130. /Helvetica-Narrow        (phvrrn.gsf)    ;
  131.     /Helvetica-Narrow-Bold        /Helvetica-Narrow    ;
  132.  
  133. /NewCenturySchlbk-Roman        (pncr.gsf)    ;
  134. /NewCenturySchlbk-Italic    (pncri.gsf)    ;
  135. /NewCenturySchlbk-Bold        (pncb.gsf)    ;
  136. /NewCenturySchlbk-BoldItalic    (pncbi.gsf)    ;
  137.  
  138. /Palatino-Roman            (pplr.gsf)    ;
  139. /Palatino-Italic        (pplri.gsf)    ;
  140. /Palatino-Bold            (pplb.gsf)    ;
  141. /Palatino-BoldItalic        (pplbi.gsf)    ;
  142.  
  143. %/Symbol                (psyr.gsf)    ;
  144.  
  145. %/Times-Roman            (ptmr.gsf)    ;
  146. %/Times-Italic            (ptmri.gsf)    ;
  147. %/Times-Bold            (ptmb.gsf)    ;
  148. %/Times-BoldItalic        (ptmbi.gsf)    ;
  149.  
  150. /ZapfChancery            (zcr.gsf)    ;
  151. /ZapfChancery-Oblique        (zcro.gsf)    ;
  152. /ZapfChancery-Bold        (zcb.gsf)    ;
  153. % Some PostScript files reference the MediumItalic font....
  154. /ZapfChancery-MediumItalic    /ZapfChancery-Oblique    ;
  155.  
  156. /ZapfDingbats            (pzdr.gsf)    ;
  157.  
  158.  
  159. %
  160. % Type 1 fonts contributed to the X11R5 distribution.
  161. %
  162.  
  163. % The following notice accompanied the Charter fonts.
  164. %
  165. % (c) Copyright 1989-1992, Bitstream Inc., Cambridge, MA.
  166. %
  167. % You are hereby granted permission under all Bitstream propriety rights
  168. % to use, copy, modify, sublicense, sell, and redistribute the 4 Bitstream
  169. % Charter (r) Type 1 outline fonts and the 4 Courier Type 1 outline fonts
  170. % for any purpose and without restriction; provided, that this notice is
  171. % left intact on all copies of such fonts and that Bitstream's trademark
  172. % is acknowledged as shown below on all unmodified copies of the 4 Charter
  173. % Type 1 fonts.
  174. %
  175. % BITSTREAM CHARTER is a registered trademark of Bitstream Inc.
  176.  
  177. % The Bitstream Charter fonts have different names (CharterBT-
  178. % instead of Charter-), but Ghostscript doesn't care.
  179. /Charter-Roman            (bchr.gsf)    ;
  180. /Charter-Italic            (bchri.gsf)    ;
  181. /Charter-Bold            (bchb.gsf)    ;
  182. /Charter-BoldItalic        (bchbi.gsf)    ;
  183.  
  184. % The following notice accompanied the Courier font:
  185. %
  186. %   IBM Courier - Copyright (c) IBM Corporation 1990, 1991
  187. %
  188. %   You are hereby granted permission under the terms of the IBM/MIT X
  189. %   Consortium Courier Typefont agreement to execute, reproduce,
  190. %   distribute, display, market, sell and otherwise transfer copies of
  191. %   the IBM Courier font to third parties.
  192. %
  193. %   The font is provided "AS IS" without charge.  NO WARRANTIES OR
  194. %   INDEMNIFICATION ARE GIVEN, WHETHER EXPRESS OR IMPLIED INCLUDING, BUT
  195. %   LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  196. %   A PARTICULAR PURPOSE.
  197.  
  198. %/Courier        (ncrr.gsf)    ;
  199. %/Courier-Italic        (ncrri.gsf)    ;
  200. %/Courier-Bold        (ncrb.gsf)    ;
  201. %/Courier-BoldItalic    (ncrbi.gsf)    ;
  202.  
  203. % The following notice accompanied the Utopia font:
  204. %
  205. %   Permission to use, reproduce, display and distribute the listed
  206. %   typefaces is hereby granted, provided that the Adobe Copyright notice
  207. %   appears in all whole and partial copies of the software and that the
  208. %   following trademark symbol and attribution appear in all unmodified
  209. %   copies of the software:
  210. %
  211. %           Copyright (c) 1989 Adobe Systems Incorporated
  212. %           Utopia (R)
  213. %           Utopia is a registered trademark of Adobe Systems Incorporated
  214. %
  215. %   The Adobe typefaces (Type 1 font program, bitmaps and Adobe Font
  216. %   Metric files) donated are:
  217. %
  218. %           Utopia Regular
  219. %           Utopia Italic
  220. %           Utopia Bold
  221. %           Utopia Bold Italic
  222.  
  223. /Utopia-Regular        (putr.gsf)    ;
  224. /Utopia-Italic        (putri.gsf)    ;
  225. /Utopia-Bold        (putb.gsf)    ;
  226. /Utopia-BoldItalic    (putbi.gsf)    ;
  227.  
  228. %
  229. % Fonts contributed by URW GmbH for distribution under the GNU License.
  230. % The following notice accompanied these fonts:
  231. %
  232. % N019003L Nimbus Sans L Regular PostScript Type 1 Font Program
  233. % N021003L Nimbus Roman No9 L Regular PostScript Type 1 Font Program
  234. % U004006T URW Grotesk 2031 Bold PostScript Type 1 Font Program
  235. % U003043T URW Antiqua 2051 Regular Condensed PostScript Type 1 Font Program
  236. %
  237. % Copyright (c) 1992 URW GmbH, Hamburg, Germany
  238. %
  239. % This program is free software; you can redistribute it and/or modify
  240. % it under the terms of the GNU General Public License as published by
  241. % the Free Software Foundation; either version 2 of the License, or
  242. % (at your option) later version.
  243. %
  244. % This program is distributed in the hope that it will be useful,
  245. % but WITHOUT ANY WARRANTY; wihtout even the implied warranty of
  246. % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  247. % See the GNU General Public License for more details.
  248. %
  249. % You should have received a copy of the GNU General Public License
  250. % along with this program; if not, write to the Free Software
  251. % Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  252. %
  253. % Address:
  254. % URW GmbH
  255. % PC Support
  256. % Harksheider Strasse 102
  257. % 2000 Hamburg 65
  258. % Germany
  259. % Phone: +49 40 60 60 50       (Reception)
  260. % Phone: +49 40 60 60 52 30   (PC Support)
  261. % Fax    : +49 40 60 60 52 52
  262. %
  263.  
  264. /NimbusSansL-Regular        (n019003l.gsf)    ;
  265. /NimbusRomanNo9L-Regular    (n021003l.gsf)    ;
  266. /URWAntiquaT-RegularCondensed    (u003043t.gsf)    ;
  267. /URWGroteskT-Bold        (u004006t.gsf)    ;
  268.  
  269. %
  270. % Shareware Kana fonts.  These are subject to the following notice:
  271. %
  272. % These copyrighted fonts were developed by Kevin Hartig. Permission is
  273. % granted to freely distribute them in entirety along with this statement.
  274. % This is shareware. If you decide to use these fonts please contribute
  275. % $10 US to help support further freeware and shareware software development.
  276. % Questions and comments may be sent to:
  277. %
  278. % hartig@fsl.noaa.gov
  279. % khartig@nyx.cs.du.edu
  280. %
  281. % Kevin Hartig
  282. % 1126 Collyer Street
  283. % Longmont, CO 80501 USA
  284. % copyright 1993.
  285.  
  286. % Hiragana and Katakana fonts.  The character names are inappropriate,
  287. % and the encoding is probably not related to any known standard.
  288.  
  289. /Calligraphic-Hiragana        (fhirw.gsf)    ;
  290. /Calligraphic-Katakana        (fkarw.gsf)    ;
  291.  
  292. %
  293. % Public-domain fonts.  These have no copyright, and are of unknown quality.
  294.  
  295. % Cyrillic fonts.  The character names are inappropriate,
  296. % and the encoding is probably not related to any known standard.
  297.  
  298. /Shareware-Cyrillic-Regular    (fcyr.gsf)    ;
  299. /Shareware-Cyrillic-Italic    (fcyri.gsf)    ;
  300. % Aliases
  301. /Cyrillic            /Cyrillic-Regular    ;
  302. /Cyrillic-Regular        /Shareware-Cyrillic-Regular    ;
  303. /Cyrillic-Italic        /Shareware-Cyrillic-Italic    ;
  304.  
  305. %
  306. % Fonts converted from Hershey outlines.  These are constructed and
  307. % maintained manually.  These are also in the public domain.
  308. %
  309. % The suggested UniqueID's and filenames are constructed differently for
  310. % these than for the ones above, because of the strange way that the Hershey
  311. % fonts were constructed.  The scheme for these looks like:
  312. %
  313. % 42TTXY0
  314. %
  315. % TT = typeface, X = ``class'', Y = variation
  316. %
  317. % The typeface names and numbers are listed in fonts.mak.
  318. %
  319. % class:
  320. % 0 = normal            = r
  321. % 1 = simplex            = s
  322. % 2 = complex            = c
  323. % 3 = triplex            = t
  324. % 4 = duplex            = d
  325. %
  326. % variation:
  327. % 0 = normal            (omitted)
  328. % 1 = oblique            = o
  329. % 2 = italic            = i
  330. % 3 = bold            = b
  331. % 4 = bold oblique        = bo
  332. % 5 = bold italic        = bi
  333. %
  334.  
  335. % Fonts created by Thomas Wolff <wolff@inf.fu-berlin.de>, by adding
  336. % accents, accented characters, and various other non-alphabetics
  337. % to the original Hershey fonts.  These are "freeware", not to be sold.
  338. % As received from Wolff, they had the extension .pfa; this was changed
  339. % for uniformity with the rest of the Ghostscript fonts.
  340.  
  341. /Hershey-Gothic-English        (hrger.gsf)    ;    % 5066533
  342. /Hershey-Gothic-German        (hrgrr.gsf)    ;
  343. /Hershey-Gothic-Italian        (hritr.gsf)    ; 
  344.  
  345. /Hershey-Plain-Duplex        (hrpld.gsf)    ;
  346. /Hershey-Plain-Duplex-Italic    (hrpldi.gsf)    ;
  347. /Hershey-Plain-Triplex        (hrplt.gsf)    ;
  348. /Hershey-Plain-Triplex-Italic    (hrplti.gsf)    ;
  349.  
  350. /Hershey-Script-Complex        (hrscc.gsf)    ;
  351. /Hershey-Script-Simplex        (hrscs.gsf)    ;    % 5066541
  352.  
  353. % Fonts created algorithmically from the above.
  354.  
  355. /Hershey-Gothic-English-Bold        (hrgerb.gsf)    ;    % 5066542
  356. /Hershey-Gothic-English-Oblique        (hrgero.gsf)    ;
  357. /Hershey-Gothic-English-SemiBold    (hrgerd.gsf)    ;
  358. /Hershey-Gothic-German-Bold        (hrgrrb.gsf)    ;
  359. /Hershey-Gothic-German-Oblique        (hrgrro.gsf)    ;
  360. /Hershey-Gothic-Italian-Bold        (hritrb.gsf)    ;
  361. /Hershey-Gothic-Italian-Oblique        (hritro.gsf)    ;
  362.  
  363. /Hershey-Plain-Duplex-Bold        (hrpldb.gsf)    ;
  364. /Hershey-Plain-Duplex-Bold-Italic    (hrpldbi.gsf)    ;
  365. /Hershey-Plain-Triplex-Bold        (hrpltb.gsf)    ;
  366. /Hershey-Plain-Triplex-Bold-Italic    (hrpltbi.gsf)    ;
  367.  
  368. /Hershey-Script-Complex-Bold        (hrsccb.gsf)    ;
  369. /Hershey-Script-Complex-Oblique        (hrscco.gsf)    ;
  370. /Hershey-Script-Simplex-Bold        (hrscsb.gsf)    ;
  371. /Hershey-Script-Simplex-Oblique        (hrscso.gsf)    ;    % 5066556
  372.  
  373. % Fonts consisting only of characters from the original Hershey
  374. % distribution.  These are Type 3 fonts.
  375.  
  376. /Hershey-Greek-Complex            (hrgkc.gsf)    ;    % 5066557
  377. /Hershey-Greek-Simplex            (hrgks.gsf)    ;
  378.  
  379. /Hershey-Plain                (hrplr.gsf)    ;
  380. /Hershey-Plain-Simplex            (hrpls.gsf)    ;    % 5066560
  381.  
  382. % Fonts created algorithmically from the above.
  383.  
  384. /Hershey-Plain-Bold            (hrplrb.gsf)    ;    % 5066561
  385. /Hershey-Plain-Bold-Oblique        (hrplrbo.gsf)    ;
  386. /Hershey-Plain-Oblique            (hrplro.gsf)    ;
  387. /Hershey-Plain-Simplex-Bold        (hrplsb.gsf)    ;
  388. /Hershey-Plain-Simplex-Bold-Oblique    (hrplsbo.gsf)    ;
  389. /Hershey-Plain-Simplex-Oblique        (hrplso.gsf)    ;    % 5066566
  390.  
  391. % This font, and only this font among the Hershey fonts, uses
  392. % the SymbolEncoding.
  393.  
  394. /Hershey-Symbol                (hrsyr.gsf)    ;    % 5066567
  395.